/* ===========================================
   Breadcrumb
   =========================================== */
.breadcrumb-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 240, 232, 1) 100%);
    /*padding: 18px 0px 10px 0px;
    margin-top: -24px;*/
}

.breadcrumb {
    font-size: 1rem;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--color-primary);
}

.breadcrumb-item.active {
    color: var(--color-text-light);
}

/* ===========================================
   Puja Details Section
   =========================================== */

.yp-puja-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.yp-puja-img{
    height: 300px;          /* FIXED HEIGHT – adjust as needed */
    overflow: hidden;
    border-radius: 20px;    
}
.yp-puja-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;      /* IMPORTANT */
    display: block;
}

.yp-puja-details h3 {
    color: var(--color-text-dark);
    font-weight: 600;
}

.yp-puja-details h1 {

    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 1.75rem;
}

.yp-puja {
    display: flex;
    align-items: center;
}

.yp-benefit {
    color: var(--color-primary);
}

.yp-puja img {
    width: 24px;
}

.yp-puja span {
    color: var(--color-text-medium);
    font-size: 16px;
}

.yp-puja-wrapper {
    display: flex;
    gap: 24px;
}

.yp-v-line {
    width: 3px;
    background: var(--border-color);
    border-radius: 8px;
}

.yp-booking-count {
    background-color: var(--bg-light-peach);
    width: fit-content;
    border-radius: 4px;
}

.yp-booking-count p {
    color: var(--color-secondary);
}

.yp-puja-book {
    color: var(--bg-white);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    padding: 12px 18px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: var(--gradient-button);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yp-puja-book img {
    width: 28px;
}

.yp-puja-book:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow)
}

/* ===========================================
   Puja Booking Section
   =========================================== */
.search-label {
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

#ypd-heading {
    margin: auto;
}

.puja-type-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid #e3cfd8;
    ;
    border-radius: 10px;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #fff;
    color: var(--text-color);
}

.puja-type-btn.active {
    background-color: var(--bg-light-peach);
    color: var(--color-primary);
    border-color: var(--color-primary);
    font-weight: 500;
}

.puja-type-btn input[type="radio"] {
    accent-color: var(--color-primary);
    width: 16px;
    height: 16px;
    pointer-events: none;
}

/* 📅 Calendar UI */
.date-picker {
    position: relative;
}

.date-picker input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 2px solid #e3cfd8;
    ;
    background-color: #fff;
    transition: 0.3s;
    cursor: pointer;
}

.date-picker input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 6px rgba(99, 34, 64, 0.3);
    outline: none;
}

.date-picker i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-size: 20px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.date-picker.active i {
    color: var(--color-secondary);
}

.yp-text {
    flex-direction: column;
    justify-content: center !important;
    align-items: center;
    gap: 4px;
}

.yp-text span {
    font-weight: 600;
    color: var(--color-secondary);
}
.puja-calendar-indicator {
    display: flex;
    gap: 20px;
    padding: 8px 0;
    font-size: 13px;
    border-top: 1px solid #eee;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
}
.puja-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}
.puja-dot.available {
    background: #ddf5dd;
}
.puja-dot.soldout {
    background: #f56464;
}
.puja-available {
    background: #ddf5dd !important; /* puja_available_color_code */
    border-radius: 50%;
    position: relative;
    color: #000 !important;
}
.puja-soldout {
    background: #f56464 !important; /* puja_not_available_color_code */
    border-radius: 50%;
    position: relative;
    color: #fff !important;
    cursor: not-allowed;
}
.cal-puja-price {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6em;
    color: #333333bd;
}
.flatpickr-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1px;
}
/* ===========================================
   Puja Booking Section
   =========================================== */

.yp-about-puja p {
    color: var(--color-text-light);
    font-size: 18px;
}

.yp-about-puja span {
    color: var(--color-text-dark);
    font-size: 18px;
}

.yp-detail-box h3 {
    font-weight: 600;
    font-size: 1.5rem;
}


/* ===========================================
   Puja Banefite Section
   =========================================== */

.yp-benefite-box i {
    font-size: 24px;
    color: var(--color-success);
}

.yp-benefite-box h5 {
    color: var(--color-text-medium);
}

/* .yp-benefite {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
   } */

.yp-benefite-box:hover {
    box-shadow: 0 4px 10px rgba(99, 34, 64, 0.08);
}

/* ==========================================
   What Our Devotees say Section
   =========================================== */

/* heading */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.review-tabs {
    background-color: var(--bg-light-peach);
    border-radius: 6px;
    padding: 6px;
}

.review-tabs button {
    background: none;
    border: none;
    border-radius: 5px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.review-tabs button.active,
.review-tabs button:hover {
    background-color: #fff;
    color: var(--color-primary);
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(99, 34, 64, 0.08);
}

/* Review cards */
.review-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(99, 34, 64, 0.08);
    transition: transform 0.2s ease-in-out;
}

/* .review-card:hover { transform:translateY(-3px); } */
.review-header {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.yp-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f8e9ef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #632240;
    font-size: 22px;
}

.reviewer-name {
    margin: 0;
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

.review-date {
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 0;
}

.review-text {
    font-size: 16px;
    color: var(--color-text-light);
    flex-grow: 1;
}

.yp-avatar i {
    font-size: 28px;
}

/* ===========================================
   User Write Review Section
   =========================================== */

.yp-review-card {
    margin: 0px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

label {
    font-weight: 500;
    color: var(--color-text-medium);
    margin-bottom: 6px;
}

.form-control {
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    box-shadow: none;
}

.form-control:focus {
    border-color: #632240;
    box-shadow: 0 0 0 0.2rem rgba(99, 34, 64, 0.1);
}

.yp-stars {
    display: flex;
    gap: 16px;
    font-size: 32px;
    cursor: pointer;
}

.yp-stars i {
    color: #ccc;
    transition: color 0.25s ease;
}

.yp-stars i.hover,
.yp-stars i.active {
    color: #f5b301;
}

.submit-btn {
    background: var(--gradient-button);
    color: white;
    border: none;
    padding: 12px 0;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    transition: 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ===========================================
   User Review Section
   =========================================== */

.yp-footer-container {
    display: flex;
    background: var(--color-primary);
    flex-direction: column;
    justify-content: flex-end;
}

.faqQuestion h3 {
    color: var(--color-text-dark);
    font-weight: 600;
    width: 100%;
}

.faqAnswer p{
    color: var(--color-text-light);
}
/* ===========================================
   Responsive Section
   =========================================== */

@media(max-width: 1200px) {}

@media(max-width: 992px) {
    .yp-puja-img {
        height: 280px;
    }
    .yp-puja-img img {
        width: 100%;
        /*height: 300px;*/
    }

    .yp-puja-details {
        gap: 12px;
    }

    .yp-benefite {
        grid-template-columns: 1fr;
    }

    .yp-about-puja p,
    .yp-about-puja span {
        font-size: 16px;
    }

    .yp-sub-details {
        flex-direction: column;
    }

    .yp-sub-details h5 {
        font-size: 18px;
    }
     .yp-puja-img {
        height: 270px;
    }
    .yp-puja-img img {
        /*height: 300px;*/
    }
}

@media(max-width: 769px) {
    .puja-type-btn {
        flex: 1;
        padding: 10px;
    }
    .yp-detail-box h3 {
       font-size: 22px;
    }

    .faqQuestion h3 {
        font-size: 16px;
    }
}

@media(max-width: 576px) {
    .yp-benefite-box h5 {
        font-size: 16px;
    }

    .yp-benefite-box i {
        font-size: 20px;
    }
     .yp-puja-img {
        height: 265px;
    }
    .yp-puja-img img {
        /*height: 275px;*/
        border-radius: 12px;
    }

    .yp-benefit {
        font-size: 18px;
    }

    .breadcrumb-item a,
    .breadcrumb-item.active {
        font-size: 14px;
    }

    /*.breadcrumb-section {
        padding: 12px 0px 6px 0px;
    }*/

    #ypd-heading {
        margin-left: 0px;
    }

    .yp-detail-box h3 {
       font-size: 20px;
    }
    .faqAnswer p{
       font-size: 14px;
    }
}

@media(max-width: 426px) {
     .yp-puja-img {
        height: 240px;
    }
    .yp-puja-img img {
        /*height: 250px;*/
    }

    .yp-puja-wrapper {
        gap: 6px;
        flex-direction: column;
    }
    .yp-detail-box h3 {
       font-size: 18px;
    }
}

@media(max-width: 376px) {
     .yp-puja-img {
        height: 200px;
    }
    .yp-puja-img img {
        /*height: 200px;*/
    }

    .review-tabs button {
        padding: 8px 16px;
    }
}

/* ruchik Dynamic-Disclaimer 24-11/2025 */
.dyna-disc {
    width: 85%;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0px 0px 3px #00000070;
    padding: 20px;
}

@media (max-width:768px) {
    .dyna-disc {
        font-size: 12px;
    }
}

@media (max-width:480px) {
    .dyna-disc {
        font-size: 10px;
    }
}